home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000217_news@columbia.edu _Wed Oct 20 10:26:55 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA26607
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 20 Oct 1999 10:26:54 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA20087
  7.     for kermit.misc@watsun.cc.columbia.edu; Wed, 20 Oct 1999 10:23:29 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: File type attributes in Kermit 95
  11. Date: 20 Oct 1999 14:23:27 GMT
  12. Organization: Columbia University
  13. Message-ID: <7ukj8v$jjk$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <7ujh2o$fre$1@nnrp1.deja.com>,  <bkennelly@my-deja.com> wrote:
  17. : I am transferring files between TSO-Kermit (4.3.3) and Kermit 95
  18. : (1.1.17).  Kermit 95 seems to ignore the file type attribute when
  19. : TSO-Kermit is the sender.  It always tries to receive the files with the
  20. : file type defined on K95.  I tried turning off PATTERNS, but it didn't
  21. : help.  SET ATTRIBUTE ON, SET ATTIBUTE TYPE ON on both sides didn't help.
  22. : I can send the files by setting the file type explicitly to both sides,
  23. : but as I understand it the sender should be able to control the file
  24. : type.
  25. : I captured the transfer negotiations with SET DEBUG ON:
  26. : With SET FILE TYPE BINARY on TSO:
  27. : S: 8 S~% @-#&3~Z 4-0___F"I2C
  28. : R: 8 Y~/ @-#Y3~^$5$0___B"UN(
  29. : S: 2!FEXECRPT1.CNTL!>!
  30. : R: B!YC:/K95/DOWNLOAD/EXECRPT1.CNTL.T=
  31. : S: 8"A."I2"!B#(19990914@ /T4
  32. : R: %"Y.5!
  33. : With SET FILE TYPE TEXT on TSO:
  34. : S: 8 S~% @-#&3~Z 4-0___D"I2A
  35. : R: 8 Y~/ @-#Y3~^$5$0___B"UN(
  36. : S: 2!FEXECRPT1.CNTL!>!
  37. : R: B!YC:/K95/DOWNLOAD/EXECRPT1.CNTL.T=
  38. : S: F"A."I2"!A*'CI6/100/#AMJ#(19990914@ ! &
  39. : R: %"Y.5!
  40. : In each case, K95 had the opposite setting and ignored the file type
  41. : attribute.
  42. Excellent report, but I can't reproduce the problem.  K95 obeys the
  43. file type attribute from Kermit-370 on VM/CMS (I've taken the liberty
  44. of lining up the corresponding fields, and highlighting the file-type
  45. attributes):
  46.  
  47. Text:
  48.   VM/CMS:  A!!1."I1"!A*'CI6/100/#AMJ#119911122 19:28:44@
  49.   MVS/TSO: A   ."I2"!A*'CI6/100/#AMJ#(19990914@
  50.                    ^^^
  51. Binary:
  52.   VM/CMS:  A!!1."I1"!B#119911122 19:28:44@
  53.   MVS/TSO: A   ."I2"!B#(19990914@
  54.                    ^^^
  55. All of these packets containt well-formed attribute lists.
  56.  
  57. The only differences are that:
  58.   . The VM/CMS version includes the "Length in K" (!) attribute, and:
  59.   . The VM/CMS includes the time of day in the file's timestamp.
  60.  
  61. These should not affect the file type.
  62.  
  63. SET FILE PATTERNS OFF only affects the file sender.  The file sender
  64. tells the file receiver the file type (text or binary) in the
  65. attribute packets as shown above.  The file receiver will never ignore
  66. this notification, no matter what its FILE PATTERNS, FILE TYPE, or
  67. TRANSFER MODE.  If you have told either one of the Kermit programs to
  68. SET ATTRIBUTES OFF, then the attribute packet won't be sent at all,
  69. which is clearly not what happened in this case.  The only way you can
  70. make the receiver ignore this notification would be:
  71.  
  72.   SET ATTRIBUTE TYPE OFF
  73.   SET FILE TYPE { TEXT or BINARY }
  74.  
  75. But that's not what you did, right?
  76.  
  77. Let's resolve this one offline.  Please collect a debug.log file from
  78. K95 for each case, as well as a list of all the commands you gave to
  79. K95 (including in your K95CUSTOM.INI file) prior to the incident, and
  80. send them to kermit-support@columbia.edu
  81.  
  82. Also, not that it should make any difference, please tell us if this
  83. problem is new to K-370 4.3.3 (I can't see how it would be).
  84.  
  85. - Frank